.sidenav_box {
	z-index: 999;
	position: fixed;
	right: 0px;
	bottom: 100px;
}
.sidenav {
	transition: all ease 0.3s;
	display: flex;
	flex-direction: column;
	background: #00a200;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	position: relative;
	right: 0;
}
.sidenav li > a,
.sidenav_btn {
	transition: all ease 0.3s;
	width: 45px;
	height: 45px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	background-color: #00a200;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: relative;
}
.sidenav li > a:hover,
.sidenav_btn:hover {
	background-color: #007600;
}
.sidenav_btn {
	position: absolute;
	bottom: -50px;
	right: 0;
}
.sidenav_info {
	transition: all ease 0.3s;
	z-index: 2;
	position: absolute;
	right: 60px;
	top: 0;
	background: #fff;
	box-shadow: 0 1px 3px rgb(18 18 18 / 10%);
	pointer-events: none;
	opacity: 0;
}
.sidenav_info img {
	width: 150px;
}
.sidenav li > a:hover .sidenav_info {
	opacity: 1;
	right: 50px;
}
.sidenav.close {
	right: -45px;
}
.sidenav.close + .sidenav_btn {
	width: 30px;
	height: 30px;
	bottom: -35px;
}
@media (max-width: 1024px) {
	.sidenav li:first-child,.sidenav li:last-child{
		display: none;
	}
}
@media (max-width: 768px) {
	.sidenav_box {
		bottom: 80px;
	}
	.sidenav li > a,
	.sidenav_btn {
		width: 35px;
		height: 35px;
	}
	.sidenav_btn {
		bottom: -40px;
	}
	.sidenav_info {
		min-width: 160px;
		min-height: 70px;
		right: 50px;
	}
	.sidenav li > a:hover .sidenav_info {
		right: 40px;
	}
}
